מטלת בית עם 2 שאלות ואחרי זה רעיון מקצועי עם עובד החברה
שאלות מתוך הראיון
// Write the class "Deferred"
// usage example
var d = new Deferred();
d.then(function(res){ console.log("1 ", res); return "a"; });
d.then(function(res){ console.log("2 ", res); return "b"; });
d.then(function(res){ console.log("3 ", res); return "c"; });
// at this point, nothing is printed to console (yet)
d.resolve("hello");
// output of usage example
// 1 hello
// 2 a
// 3 b
// ========================